home *** CD-ROM | disk | FTP | other *** search
/ Sprite 1984 - 1993 / Sprite 1984 - 1993.iso / src / boot / netBoot.new / sun4c.md / old / enable.h < prev    next >
Text File  |  1990-12-19  |  826b  |  29 lines

  1.  
  2. /*    @(#)enable.h 1.3 88/02/08 SMI    */
  3.  
  4. /*
  5.  * Copyright (c) 1986 by Sun Microsystems, Inc.
  6.  */
  7.  
  8. /*
  9.  * The System Enable register controls overall
  10.  * operation of the system.  When the system is
  11.  * reset, the Enable register is cleared.  The
  12.  * enable register is addressed as a byte in
  13.  * FC_MAP space.
  14.  */
  15.  
  16. /*
  17.  * Bits of the Enable Register
  18.  */
  19. #define    ENA_DIAG    0x01        /* r/o - diag switch, 1 = on */
  20. #define    ENA_COPY    0x04        /* r/w - enable copy update mode */
  21. #define    ENA_VIDEO    0x08        /* r/w - enable video memory */
  22. #define    ENA_CACHE    0x10        /* r/w - enable external cache */
  23. #define    ENA_SDVMA    0x20        /* r/w - enable system DVMA */
  24. #define    ENA_FPP        0x40        /* r/w - enable floating point proc */
  25. #define    ENA_NOTBOOT    0x80        /* r/w - non-boot state, 1 = normal */
  26.  
  27.  
  28. #define    ENABLEREG    0x40000000    /* addr of enable reg in FC_MAP space */
  29.